Base 10 Divisibility Rules

A divisibility rule is a short rule or algorithm that can be used to determine (generally integral) divisibility. Here is a list of many divisibility rules based on the digits of integers in their base 10 representation and corresponding proofs.


Throughout these proofs, let k=an10n+an110n1++a110+a0 be the base 10 representation of a non-negative integer k such that ai{1,,9} are the digits.

Each of these rules is only provided for non-negative integers, however most of them generalise to any integer. Rules that don't include that of 7, however in cases like this, divisibility for a negative number should be checked by verifying divisibility for its absolute value, since mkmk.

Also note we only prove rules for divisibility by prime powers since for example checking divisibility by 12 reduces to checking divisibility by 3 and 4. The same is true for any integer which is not the power of a prime.


2

Theorem

A natural number is divisible by 2 if and only if its last digit is divisible by 2.

Proof

Since 210, we have that

k=2(an5n+an15n1++a15)+a0

and therefore

ka0(mod2)

which implies that

2kk0(mod2)a00(mod2)2a0.

3

Theorem

A natural number is divisible by 3 if and only if the sum of its digits is divisible by 3.

Proof

Consider that

k=an(10n1)+an+an1(10n11)+an1++a1(101)+a1+a0=(i=0nai)+an(10n1)+an1(10n11)+an1++a1(101)+a1.

From here it is clear that 10r11r10(mod3) for all r0, and therefore

ki=0nai(mod3)

which implies that

3kk0(mod3)i=0nai0(mod3)3i=0nai.

4

Theorem

A natural number is divisible by 4 if and only if the two digit number formed from its last two digits is divisible by 4.

Proof

Since 4100 given 4×25=100, we have that

k=4×25(an10n2+an110n3++a2)+a110+a0

and therefore

ka110+a0(mod4)

which implies that

4kk0(mod4)a110+a00(mod4)4a110+a0.

5

Theorem

A natural number is divisible by 5 if and only if its last digit is 0 or 5.

Proof

As 5 is a factor of 10, this proof follows almost identically to the divisibility rule for 2. In particular we have that

k=5(an2n+an12n1++a12)+a0

and therefore

ka0(mod5)

which implies that

5kk0(mod5)a00(mod5)5a0.

7

Theorem

A natural number is divisible by 7 if and only if the number formed by doubling the last digit and subtracting that from the truncated number is divisible by 7.

Since this rule is a little weirder, here is an example.

Example

3976 is divisible by 7.

Solution

We take the truncated number 397 and subtract twice the last digit to get 39762=385. Repeating this, we have 3852=28. Again, we have 28×2=14 and finally 142=7, which is clearly divisible by 7.


Proof
k0(mod7)an10n+an110n1++a110+a00(mod7)10(an10n1+an110n2++a1)a0(mod7)an10n1+an110n2++a1101a0(mod7)(an10n1+an110n2++a1)2a0101a02a0(mod7)(an10n1+an110n2++a1)2a0(101+2)a0(mod7)(an10n1+an110n2++a1)2a00(mod7)

where this last equivalence holds because 10×2=201(mod7) which implies that 101=2 in Z7 and subsequently 101+20(mod7).